home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
8381
/
8381.xpi
/
chrome
/
content
/
webclipper
/
mac
/
webclipperOverlay.xul
< prev
Wrap
Extensible Markup Language
|
2010-02-02
|
1KB
|
33 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://webclipper3/skin/webclipperOverlay.css" type="text/css"?>
<overlay id="evernote-mozilla-extension-clipping-code" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- bookmarklet clipper code which we use as a fallback on PPC or some other weirdness -->
<script type="application/x-javascript" src="http://www.evernote.com/public/bookmarkClipper.js"/>
<!-- our mac clipping javascript code -->
<script type="application/x-javascript" src="chrome://webclipper3/content/mac-clip-to-evernote.js"/>
<!-- common function to put the button in the toolbar the first go-round -->
<script type="application/x-javascript" src="chrome://webclipper3-common/content/toolbar-button-init.js"/>
<!-- our Firefox toolbar button -->
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton id="webclipper3-button" label="Add to Evernote"
class="enmac-clipper-button toolbarbutton-1"
tooltiptext="Add selected text or entire page to Evernote as new note"
onclick="evernote_performClip(null);" />
</toolbarpalette>
<!-- our firefox popup menu -->
<popup id="contentAreaContextMenu">
<menuseparator id="evernote-clipper-menu-sep" />
<menuitem id="evernote-clipper-menu"
label="Add to Evernote"
oncommand="return evernote_performClip(document.popupNode);" />
</popup>
</overlay>